home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / tools / amigaos4_only / ifxlite / imagefx3 / rexx / autofx / eot_cloud_load.ifx < prev    next >
Text File  |  2004-08-03  |  1KB  |  54 lines

  1. /*
  2.  * EOT_Cloud_Load.ifx
  3.  * Written by Keith Barkley
  4.  *
  5.  * Cloud Load Sequence Effect.
  6.  *
  7.  * Inputs:
  8.  *    Word(Arg(1),1) = Frame number (1 - N)
  9.  *    Word(Arg(1),2) = Main filename ("-" if not specified)
  10.  *    Word(Arg(1),3) = Swap filename ("-" if not specified)
  11.  *    Word(Arg(1),4) = Sequence number (?)
  12.  *    Word(Arg(1),5) = Total number of frames (N)
  13.  *
  14.  * Returns:
  15.  *    0 if successful, non-zero on failure
  16.  *
  17.  */
  18.  
  19. OPTIONS RESULTS
  20.  
  21.  
  22. framenum = Word(Arg(1),1)
  23. mainname = Word(Arg(1),2)
  24. swapname = Word(Arg(1),3)
  25. seqnum   = Word(Arg(1),4)
  26. framemax = Word(Arg(1),5)
  27.  
  28. base  = 'Autofx_Cldld_'
  29.  
  30. lpath     = GETCLIP(base||'Path')
  31. lfile     = GETCLIP(base||'File')
  32. step      = GETCLIP(base||'StepSize')
  33. increment = GETCLIP(base||'Increment')
  34.  
  35. IF datatype(framemax, 'N') = 1 THEN DO
  36.       increment = framenum * step
  37.       END
  38.    ELSE DO
  39.       increment = increment + step
  40.       END
  41.  
  42. temp =  ' LOAD ' || lpath || '/' || lfile
  43.  
  44. temp = temp || ' FRAME ' || increment
  45.  
  46.  
  47. Hook Clouds temp
  48.  
  49. CALL SETCLIP(base||'Increment', increment)
  50.  
  51. rc = 0
  52.  
  53. EXIT rc
  54.